home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / afxvbx.zip / AFXVBX.H < prev    next >
C/C++ Source or Header  |  1993-06-02  |  393b  |  21 lines

  1. extern "C" void _export WINAPI InitAfxVbx();
  2.  
  3. class CMainWindow : public CFrameWnd
  4. {   
  5. public: 
  6.  
  7.     CMainWindow();
  8.     afx_msg void OnVBXDialog();
  9.  
  10.     DECLARE_MESSAGE_MAP()
  11. };
  12.  
  13. class CVBXDialog : public CDialog
  14. {
  15. public:
  16.     CVBXDialog(const int lpTemplateName, CWnd *pParentWnd = NULL)
  17.             :CDialog(lpTemplateName,pParentWnd){}
  18.     
  19.     BOOL OnInitDialog();
  20. };
  21.